home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / aol_installed.nasl < prev    next >
Text File  |  2005-03-31  |  1KB  |  48 lines

  1. # This script was written by Jeff Adams <jeffrey.adams@hqda.army.mil>
  2. # This script is Copyright (C) 2003 Jeff Adams
  3.  
  4.  
  5. if(description)
  6. {
  7.  script_id(11882);
  8.  
  9.  script_version("$Revision: 1.2 $");
  10.  
  11.  name["english"] = "AOL Instant Messenger is Installed";
  12.  
  13.  script_name(english:name["english"]);
  14.  
  15.  desc["english"] = "
  16. The remote host is using AOL Instant Messenger (AIM). AIM has been associated 
  17. with multiple security vulnerabilities in the past. This software is not 
  18. suitable for a business environment. 
  19.  
  20. Solution : Uninstall the software
  21. Risk factor : Low";
  22.  
  23.  
  24.  script_description(english:desc["english"]);
  25.  
  26.  summary["english"] = "Determines if AOL Instant Messenger is installed";
  27.  
  28.  script_summary(english:summary["english"]);
  29.  
  30.  script_category(ACT_GATHER_INFO);
  31.  
  32.  script_copyright(english:"This script is Copyright (C) 2003 Jeff Adams");
  33.  family["english"] = "Windows";
  34.  script_family(english:family["english"]);
  35.  
  36.  script_dependencies("smb_hotfixes.nasl");
  37.  script_require_keys("SMB/Registry/Enumerated");
  38.  script_require_ports(139, 445);
  39.  exit(0);
  40. }
  41.  
  42. if ( ! get_kb_item("SMB/Registry/Enumerated") ) exit(1);
  43.  
  44. key = "SMB/Registry/HKLM/SOFTWARE/Microsoft/Windows/CurrentVersion/Uninstall/AOL Instant Messenger/DisplayName";
  45.  
  46. if (get_kb_item (key))
  47.   security_note(get_kb_item("SMB/transport"));
  48.